home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 13
/
Aminet 13 - August 1996.iso
/
Aminet
/
mus
/
play
/
DeliTracker225.lha
/
DeliTracker_II
/
Files
/
arexx.lzx
/
Arexx
/
dt_append.rexx
next >
Wrap
OS/2 REXX Batch file
|
2015-10-11
|
212b
|
19 lines
/* DeliTracker - toggles append */
address 'DELITRACKER'
options results
status G app
if result == "no" then do
Append yes
say "Append is now on..."
end
else do
Append no
say "Append is now off..."
end